fromJSON

(alias) pure static function fromJSON(json: text): gtv

Deprecated

Use 'from_json' instead

Obtain a GTV from JSON text.

First parses a JSON value from text, and then converts the JSON value to a GTV.

Equivalent to gtv.from_json(json(text)).

Alias

Alias target

Since

0.9.0

Parameters

json

the JSON text to decode

Throws

exception

when:

  • the JSON text is ill-formed

  • the JSON value cannot be converted to a GTV


(alias) pure static function fromJSON(json: json): gtv

Deprecated

Use 'from_json' instead

Convert a JSON value to a GTV.

Inverse of gtv.to_json().

Alias

Alias target

Since

0.9.0

Parameters

json

the JSON to convert

Throws

exception

if the JSON value cannot be converted to a GTV